home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-03-04 | 840 b | 38 lines | [TEXT/ToyS] |
- property kasTitle : "Time Server"
-
- property kdtYYYY : 1
- property kdtMo : 3
- property kdtD : 5
- property kdtH : 7
- property kdtM : 9
- property kdtS : 10
- property kdtYYYYMMDDHMS : kdtYYYY + (16 * kdtMo) + (16 ^ 2 * kdtD) + (16 ^ 3) * kdtH + (16 ^ 4 * kdtM) + (16 ^ 5 * kdtS)
-
- global gasWin
-
-
- on run
- try
- set loc to (load preference named kasTitle)
- on error
- set loc to {-1, -1}
- end try
-
- set gasWin to display info titled kasTitle located at loc
- end run
-
-
- on quit
- save preference (screen location of (display info gasWin with disposal)) named kasTitle
- continue quit
- end quit
-
-
- on GiveMeTheTime(clientName, clientTime)
- set td to the clock using format kdtYYYYMMDDHMS
- display info gasWin message clientName at line 1
- display info gasWin message clientTime at line 2
- display info gasWin message td at line 3
- return td
- end GiveMeTheTime
-